// Read Command line arguments
// Date 13:16 29/10/2016
// By Ben a.k.a DreamVB

#include <iostream>

using namespace std;
using std::cout;
using std::endl;

int main(int argc, char *argv[]){

	cout << "Command line arguments : " << argc << endl;
	//List arguments
	for (int i = 0; i < argc; i++){
		cout << "Argument " << (i + 1) << ": " << argv[i] << endl;
	}

	system("pause");
	return 0;
}